-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Logs Shared] Types refactor #173819
[Logs Shared] Types refactor #173819
Conversation
🤖 GitHub commentsExpand to view the GitHub comments
Just comment with:
|
💚 Build Succeeded
Metrics [docs]Any counts in public APIs
Async chunks
Public APIs missing exports
Page load bundle
History
To update your PR or re-run it, just comment with: |
@@ -79,7 +81,7 @@ export const CategoryExampleMessage: React.FunctionComponent<{ | |||
onMouseLeave={setNotHovered} | |||
> | |||
<LogEntryColumn {...columnWidths[timestampColumnId]}> | |||
<LogEntryTimestampColumn format={exampleTimestampFormat} time={timestamp} /> | |||
<LogEntryTimestampColumn format={exampleTimestampFormat} time={time} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: caught typing issue thanks to typed dynamic
implementation.
Pinging @elastic/obs-ux-logs-team (Team:obs-ux-logs) |
did we need to export the interfaces for something specific? or is the plan to use them somewhere else? |
I exported them to solve the issue described in here in the CI Checks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
📓 Summary
Closes #173493
This work improves typing for the
dynamic
util for lazily exported components, catching a couple of typing issues.